home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / editors / mjovesrc.zoo / chars.h < prev    next >
Text File  |  1990-09-29  |  628b  |  15 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. #define CTL(c)        ((c) & 037)
  9. #define META(c)        ((c) | 0200)
  10. #define RUBOUT        '\177'
  11. #define LF        CTL('J')
  12. #define CR        CTL('M')
  13. #define BS        CTL('H')
  14. #define ESC        '\033'
  15.